home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Utilities / RemoteCommand / Source / RemoteCommand_main.m < prev    next >
Encoding:
Text File  |  1993-05-05  |  361 b   |  16 lines

  1. // -------------------------------------------------------------------------------------
  2. #import <appkit/appkit.h>
  3. #import "RemoteCommand.h"
  4.  
  5. /* main entry point */
  6. void main(int argc, char *argv[])
  7. {
  8.     
  9.     /* init/run app */
  10.     [RemoteCommand new];
  11.     if ([NXApp loadNibSection:"RemoteCommand.nib" owner:NXApp withNames:NO]) [NXApp run];
  12.     [NXApp free];
  13.     exit(0);
  14.     
  15. }
  16.